home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / Words / WordsView.h < prev    next >
Text File  |  1994-03-23  |  964b  |  55 lines

  1. #import <appkit/appkit.h>
  2. #import "Thinker.h"
  3.  
  4. // this code is copyright Darcy Brockbank, 1993
  5. //
  6. // You may freely reuse and distribute this code in any way shape or
  7. // form, provided that this notice stays intact.
  8. //
  9. // darcy@hasc.ca, samurai@cs.mcgill.ca
  10. //
  11. // If you do improve this thing, send me a copy!
  12. //
  13. // - darcy
  14.  
  15.  
  16. @interface WordsView:View
  17. {
  18.     const char *words;
  19.     int len;
  20.     int maxlen;
  21.     unsigned threshold;
  22.     int clearAfter;
  23.     NXColor currentColor;
  24.     char currentWord[1024];
  25.     const char * const * fontNames;
  26.     int numFonts;
  27.     int iteration;
  28.     id font;
  29.     int gray;
  30.     id buffer;
  31.     float blue;
  32.     float red;
  33.     float green;
  34.     int bits;
  35.     float    xpos;
  36.     float    ypos;
  37.     NXPoint maxCoord;
  38.     NXSize oldSize;
  39.     int currentFrame;
  40.     id sharedInspectorPanel;
  41.     id speedSlider;
  42.     id clearSlider;
  43.     Matrix * grayMatrix;
  44. }
  45.  
  46. - setGray:sender;
  47. - setThreshold:sender;
  48. - setClearAfter:sender;
  49. - oneStep;
  50. - sizeTo:(NXCoord)width :(NXCoord)height;
  51. - newViewSize;
  52. - (const char *)windowTitle;
  53.  
  54. @end
  55.